home *** CD-ROM | disk | FTP | other *** search
/ Telecommunications & Multimedia Encyclopedia / Jones Telecommunications and Multimedia Encyclopedia (Jones)(1996).ISO / mac / ENCYCLOP / EXIT.DIR / 00003_Script_3 < prev    next >
Text File  |  1996-01-10  |  757b  |  38 lines

  1. on exitFrame
  2.   global gButtonClicked,  gDisableThreestate,gGotocredits,gModal
  3.   
  4.   moveToFront window "ExitMenu"
  5.   set done = 0
  6.   
  7.   repeat while NOT ( done )
  8.     
  9.     if ( the mouseDown ) then
  10.       -- do nothing
  11.     end if
  12.     
  13.     if ( rollover (2) ) then
  14.       ButtonHandler 2, 11
  15.       if gButtonClicked = 1 then
  16.         --quit
  17.         set gGotocredits = 1
  18.         set gModal = 2
  19.         set gDisableThreestate = 0
  20.         set done = 1
  21.       end if
  22.     end if
  23.     
  24.     if ( rollover (3) ) then
  25.       ButtonHandler 3, 14
  26.       if gButtonClicked = 1 then
  27.         set gDisableThreestate = 0
  28.         set done = 1
  29.       end if
  30.     end if
  31.     
  32.   end repeat
  33.   
  34.   set gDisableThreestate = 0
  35.   stopMovie
  36.   go to "End"
  37.   
  38. end